home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 50
/
Volume 50 - JOGO DISK .iso
/
Games
/
maya_miguel_global_groovin.swf
/
scripts
/
DefineSprite_168
/
frame_1
/
DoAction.as
Wrap
Text File
|
2007-09-27
|
690b
|
41 lines
fullheight = 143;
top = vol._y;
left = vol._x;
right = vol._x;
bottom = vol._y + fullheight;
level = 143;
vol.onPress = function()
{
startDrag("vol",0,left,top,right,bottom);
dragging = true;
};
vol.onRelease = function()
{
stopDrag();
dragging = false;
};
vol.onReleaseOutside = function()
{
dragging = false;
};
this.onEnterFrame = function()
{
if(dragging)
{
level = fullheight - (vol._y - top);
}
else if(level > fullheight)
{
level = fullheight;
}
else if(level < 0)
{
level = 0;
}
else
{
vol._y = - level + fullheight + top;
}
_root.GlobalSound.setVolume(level);
};